home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Games of Daze
/
Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso
/
x2ftp
/
msdos
/
lang
/
fst-31s
/
doc
/
mykindof.mod
< prev
next >
Wrap
Text File
|
1992-09-20
|
308b
|
13 lines
IMPLEMENTATION MODULE MyKindOfProgrammers;
FROM Strings IMPORT CompareStr;
CLASS Modula2Programmer;
PROCEDURE isSmart() :BOOLEAN;
BEGIN
RETURN CompareStr(compilerVendor,"FST") = 0;
END isSmart;
INIT
compilerVendor := "FST";
END Modula2Programmer;
END MyKindOfProgrammers.